home *** CD-ROM | disk | FTP | other *** search
/ PC World Komputer 2010 April / PCWorld0410.iso / redakcyjne / programy / FEBE (Firefox Environment Backup Extension) 5.0 / febe-5.0-fx.xpi / chrome / febe.jar / content / febeError.xul < prev    next >
Extensible Markup Language  |  2007-06-01  |  2KB  |  42 lines

  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <?xml-stylesheet href="chrome://febe/skin/febe.css" type="text/css"?>
  3. <?xml-stylesheet href="chrome://global/skin/global.css" type="text/css"?>
  4.  
  5. <!DOCTYPE window [
  6. <!ENTITY % febeDTD SYSTEM "chrome://febe/locale/febe.dtd" >%febeDTD;
  7. <!ENTITY % febeHelpDTD SYSTEM "chrome://febe/locale/febeHelp.dtd" >%febeHelpDTD;
  8. ]>
  9.  
  10. <dialog title="&febe.error.title;"
  11.                 xmlns:html="http://www.w3.org/1999/xhtml"
  12.                 xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"
  13.                 onload="febeSetAlertMsg(); sizeToContent();"
  14.                 buttons="cancel,extra1"
  15.                 buttonlabelcancel="&febe.close;"
  16.                 ondialogcancel="window.close();"
  17.                 buttonlabelextra1="&febe.copy2clipboard;"
  18.                 ondialogextra1="febeCopyToClipboard();">
  19.  
  20.     <script type="application/x-javascript" src="chrome://febe/content/febeCommon.js"/>
  21.  
  22.     <stringbundleset id="stringbundleset">
  23.         <stringbundle id="febe-strings" src="chrome://febe/locale/febe.properties"/>
  24.     </stringbundleset>
  25.  
  26.     <groupbox class="box-inset">
  27.         <caption id="febeMsgCaptionID" class="outset" style="-moz-border-radius: 15px; background-color: white">
  28.             <hbox align="center">
  29.                 <image src="chrome://febe/skin/warning24.png" />
  30.                 <label value="&febe.alert.title;"/>
  31.             </hbox>
  32.         </caption>
  33.         <vbox id="febeMsgBox"/>
  34.         <separator class="thin"/>
  35.         <hbox>
  36.             <description flex="1" style="font-size: 8pt;">&febe.error.msg; 
  37.                 <text value="&febe.error.link;" class="link" onclick="febeOpenLink('http://www.customsoftwareconsult.com/phpBB2/index.php');"/>
  38.             </description>
  39.         </hbox>
  40.     </groupbox>
  41. </dialog>
  42.